/* Google Font Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px 10px 120px;
  background-color: #ffffff;
  filter: drop-shadow(0 0 0.2rem rgb(100, 100, 100));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.logo {
  width: 80%;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 80px;
}
.logo-img img {
  width: 100%;
}
.logo-name {
  margin-left: 30px;
  font-weight: 700;
  font-size: 20px;
  color: #28166f;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sub-logo{
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
text-shadow: none;
color: #ca0303;
}
/*********************** TABS **************************/

.tabs {
  margin-left: 10%;
}

ul {
  display: flex;
  text-decoration: none;
  padding: 10px;
}

li {
  list-style: none;
  transition: 0.3s ease-in;
}
li:hover {
  /* box-shadow: #000000;
    border: none; */
  transform: translateY(-5px);
}
a {
  text-decoration: none;
  color: black;
  padding: 10px;
}

.nav-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.icon {
  width: 10%;
  margin-right: 10px;
}
.phone-icon {
  width: 100%;
}
.bg-img {
  position: relative;
  width: 100%;
  height: 100vh;
}

.banner {
  background: url(../images/bg-fin.JPG);
  height: 100vh;
  margin-top: 90px;
  background-size: cover;
  background-repeat: no-repeat;
}
.text-wrapper {
  margin: 0 10%;
  padding-top: 4%;
}
.header {
  position: relative;
  margin: 30px 0;
  font-size: 3.2vw;
  font-weight: 800;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  line-height: 1.2em;
  text-shadow: 2px 2px 4px #000000;
}
.sub-header {
  margin: 10px 0;
  position: relative;
  /* font-size: 30px; */
  font-size: 2.2vw;
  font-weight: 500;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2em;
  text-shadow: 2px 2px 4px #000000;
}
.span-1 {
  color: #ffb900;
}

.span-2 {
  color: #ffb900;
  font-weight: 500;
  font-size: 1em;
}
.line {
  position: relative;
  margin: 0 0;
  width: 170px;
  height: 0;
  border-bottom: 2px solid #ffb900;
}
.para {
  margin: 10px 0;
  position: relative;
  width: 1000px;
  color: white;
  font-size: 1.2vw;
  /* font-size: 15px; */
  line-height: 1.4em;
}
.cta-button {
  margin: 20px 0;
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
.cta {
  position: relative;
  text-decoration: none;
  background-color: #ffb900;
  color: black;
  padding: 5px 20px 5px 20px;
  border-radius: 20px;
}
/*********************** drop down nav **************************/

.dropdown {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  cursor: pointer;
  transition: 0.4s ease-in;
}
.dropdown:hover {
  transform: translateY(-5px);
}

.dropdown-content {
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: #ffffff;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  transition: max-height 0.4s ease-in-out;
  z-index: 1;
  border-radius: 8px;
}

.dropdown-content a {
  color: rgb(0, 0, 0);
  padding: 7px 16px;
  display: block;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;

}

.dropdown-content a:hover {
  background-color: #dbdbdb;
}

.dropdown:hover .dropdown-content {
  /* display: block; */
  max-height: 400px;
}

/*********************** ABOUT SECTION **************************/

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background-color: #000c14;
}
.left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.5s ease-out, transform 1s ease-in;
}
.right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease-out, transform 1s ease-in;
}

.left.slide-in,
.right.slide-in {
  opacity: 2;
  transform: translateX(0);
}

.left {
  width: 30vw;
  display: flex;
  justify-content: flex-end;
}
.right {
  width: 55vw;
  margin-left: 30px;
}
.about-img {
  width: 100%;
}
.about-header {
  margin: 10px 0;
  font-size: 2vw;
  font-weight: 800;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.2em;
}
.about-line {
  position: relative;
  margin: 0 0;
  width: 120px;
  height: 0;
  border-bottom: 2px solid rgb(255, 238, 2);
}
.about-para {
  margin: 20px 0;
  color: rgb(255, 255, 255);
  font-size: 1.22vw;
  line-height: 1.4em;
  text-align: justify;
}

/*********************** SERVICES SECTION **************************/

.services-container {
  background: url(../images/services-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 20px;
}

section {
  /* margin-top: 40px; */
}
.container {
  padding-top: 20px;
}
.header-text {
  margin: 0 auto;
  text-align: left;
  margin-left: 28vw;
}
h1 {
  color: white;
}
p {
  color: white;
}

.services {
  display: flex;
  max-width: 70%;
  width: 1200px !important;
  padding-top: 10px;
  margin-right: auto;
  margin-left: 26vw;
}

/*********************** CARDS **************************/

/*********************** CARD-1 **************************/

.card-1 {
  width: 20vw;
  height: 25vh;
  margin: 20px;
  /* background: rgb(103, 225, 255); */
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  font-size: 30px;
  font-weight: 900;
}

.card-1:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  background: rgb(203, 123, 18);
}

.card-1 .first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  background: url(../images/tools.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-1:hover .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card-1:hover .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}
span {
  color: aliceblue;
  text-shadow: 2px 2px 4px #000000;
}
.disc {
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
}

/*********************** CARD-2 **************************/

.card-2 {
  width: 20vw;
  height: 25vh;
  margin: 20px;
  /* background: rgb(103, 225, 255); */
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  font-size: 30px;
  font-weight: 900;
}

.card-2:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  background: rgb(203, 123, 18);
}

.card-2 .first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  background: url(../images/packing-material.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-2:hover .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card-2:hover .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}
span {
  color: aliceblue;
  text-shadow: 2px 2px 4px #000000;
}
.disc {
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
}

/*********************** CARD-3 **************************/

.card-3 {
  width: 20vw;
  height: 25vh;
  margin: 20px;
  /* background: rgb(103, 225, 255); */
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  font-size: 30px;
  font-weight: 900;
}

.card-3:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  background: rgb(203, 123, 18);
}

.card-3 .first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  background: url(../images/safety2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-3:hover .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card-3:hover .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}
span {
  color: aliceblue;
  text-shadow: 2px 2px 4px #000000;
}
.disc {
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
}
/*********************** CARD-4 **************************/

.card-4 {
  width: 20vw;
  height: 25vh;
  margin: 20px;
  /* background: rgb(103, 225, 255); */
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  font-size: 30px;
  font-weight: 900;
}

.card-4:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  background: rgb(203, 123, 18);
}

.card-4 .first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  background: url(../images/electrical.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-4:hover .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card-4:hover .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}
span {
  color: aliceblue;
  text-shadow: 2px 2px 4px #000000;
}
.disc {
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
}
/*********************** CARD-5 **************************/

.card-5 {
  width: 20vw;
  height: 25vh;
  margin: 20px;
  /* background: rgb(103, 225, 255); */
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  font-size: 30px;
  font-weight: 900;
}

.card-5:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  background: rgb(203, 123, 18);
}

.card-5 .first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  background: url(../images/hardware2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-5:hover .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card-5:hover .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}
span {
  color: aliceblue;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
}
.disc {
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
}
/*********************** CARD-6 **************************/

.card-6 {
  width: 20vw;
  height: 25vh;
  margin: 20px;
  /* background: rgb(103, 225, 255); */
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  font-size: 30px;
  font-weight: 900;
}

.card-6:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.705);
  background: rgb(203, 123, 18);
}

.card-6 .first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  background: url(../images/construction.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.card-6:hover .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card-6:hover .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}
span {
  color: aliceblue;
  text-shadow: 2px 2px 4px #000000;
}
.disc {
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
}

/*********************** FOOTER SECTION **************************/

.footer-wrapper {
  background: rgb(159 188 195 / 80%);
}
.footer-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 285px 40px 80px;
}

.footer-logo {
  width: 100%;
}

.footer-logo-img {
  width: 70px;
}
.footer-logo-img img {
  width: 100%;
}
.footer-logo-name {
  font-weight: 700;
  font-size: 20px;
}
.footer-title {
  font-weight: 700;
  font-size: 20px;
}
.text {
  font-weight: 500;
  margin-top: 10px;
}
.text-2 {
  font-weight: 500;
  margin-top: 35px;
}
.text-3 {
  font-weight: 500;
}
.service-1 {
  margin-top: 10px;
}

.footer-strip {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #000000;

}
.copyright {
  color: wheat;
  font-size: 14px;
  padding: 20px;
}
/* .plug {
  display: flex;
  justify-content: center;
 
  color: wheat;
  font-size: 12px;
} */

